home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60rt.lha / Vim / vim60 / delmenu.vim < prev    next >
Encoding:
Text File  |  2001-05-27  |  645 b   |  26 lines

  1. " This Vim script deletes all the menus, so that they can be redefined.
  2. " Warning: This also deletes all menus defined by the user!
  3. "
  4. " Maintainer:    Bram Moolenaar <Bram@vim.org>
  5. " Last Change:    2001 May 27
  6.  
  7. aunmenu *
  8.  
  9. silent! unlet did_install_default_menus
  10. silent! unlet did_install_syntax_menu
  11. if exists("did_menu_trans")
  12.   menutrans clear
  13.   unlet did_menu_trans
  14. endif
  15.  
  16. silent! unlet find_help_dialog
  17.  
  18. silent! unlet menutrans_help_dialog
  19. silent! unlet menutrans_path_dialog
  20. silent! unlet menutrans_tags_dialog
  21. silent! unlet menutrans_textwidth_dialog
  22. silent! unlet menutrans_fileformat_dialog
  23. silent! unlet menutrans_no_file
  24.  
  25. " vim: set sw=2 :
  26.